home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1998 May: Tool Chest
/
Dev.CD May 98 TC.toast
/
Tool Chest
/
Development Kits
/
C++ Related
/
C++ Source Code Formatter
/
Src
/
cdent.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-04-27
|
340 b
|
22 lines
|
[
TEXT/MPS
]
#ifndef __CDENT__
#define __CDENT__ 1
/*
** Severity levels for the diag function
*/
enum Severity {
kDebug //
, kProgress //
, kDiagnostic //
, kFatal //
};
extern Severity gDiagLevel; // Report at this level or above
extern void diag(Severity, const char *, ...); // Report errors
#endif